﻿
#include "V3Component.txt"

final class V3Panel {
  private int width, height;

  native public V3Panel( int width, int height );

  public int getWidth() {
    return width;
  }

  public int getHeight() {
    return height;
  }

  native public void setTitle( String title );
}
